home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / LICENSED.PAK / LICENPPG.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  80 lines

  1. // licenppg.cpp : Implementation of the CLicensedPropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "licensed.h"
  15. #include "licenppg.h"
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22.  
  23. IMPLEMENT_DYNCREATE(CLicensedPropPage, COlePropertyPage)
  24.  
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // Message map
  28.  
  29. BEGIN_MESSAGE_MAP(CLicensedPropPage, COlePropertyPage)
  30.     //{{AFX_MSG_MAP(CLicensedPropPage)
  31.     //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33.  
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // Initialize class factory and guid
  37.  
  38. IMPLEMENT_OLECREATE_EX(CLicensedPropPage, "LICENSED.LicensedPropPage.1",
  39.     0x37446b82, 0x5870, 0x101b, 0xb5, 0x7b, 0x0, 0x60, 0x8c, 0xc9, 0x6a, 0xfa)
  40.  
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CLicensedPropPage::CLicensedPropPageFactory::UpdateRegistry -
  44. // Adds or removes system registry entries for CLicensedPropPage
  45.  
  46. BOOL CLicensedPropPage::CLicensedPropPageFactory::UpdateRegistry(BOOL bRegister)
  47. {
  48.     if (bRegister)
  49.         return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  50.             m_clsid, IDS_LICENSED_PPG);
  51.     else
  52.         return AfxOleUnregisterClass(m_clsid, NULL);
  53. }
  54.  
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CLicensedPropPage::CLicensedPropPage - Constructor
  58.  
  59. CLicensedPropPage::CLicensedPropPage() :
  60.     COlePropertyPage(IDD, IDS_LICENSED_PPG_CAPTION)
  61. {
  62.     //{{AFX_DATA_INIT(CLicensedPropPage)
  63.     //}}AFX_DATA_INIT
  64. }
  65.  
  66.  
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CLicensedPropPage::DoDataExchange - Moves data between page and properties
  69.  
  70. void CLicensedPropPage::DoDataExchange(CDataExchange* pDX)
  71. {
  72.     //{{AFX_DATA_MAP(CLicensedPropPage)
  73.     //}}AFX_DATA_MAP
  74.     DDP_PostProcessing(pDX);
  75. }
  76.  
  77.  
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CLicensedPropPage message handlers
  80.